Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

127
Views
Express and Mongoose - How to condition search with "where" based on populated nested object

I apologize if the title is inaccurate - I'm not quite sure how to articulate this issue. I'm building a social media-type application and want to implement a privacy feature. Right now, I'm trying to only retrieve posts if the creator's profile is not private. The creator is populated in a pre hook.

For example, this works fine (only gets posts where the caption is "hello there!"):

const posts = await Post.find()
     // .populate("creator").populate("comments") // this is done in a pre hook
        .where("caption").equals("hello there!")
        .sort("-createdAt");

I want to do the same thing with the "creator" object instead of the "caption" object. Something like:

const posts = await Post.find()
     // .populate("creator").populate("comments") // this is done in a pre hook
        .where("creator.private").equals(false)
        .sort("-createdAt");
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!